home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 1: Aki Ross.iso / pc / assets / aki-mpc.dcr / 00034_FULLSCREEN.ls < prev    next >
Encoding:
Text File  |  2001-07-19  |  384 b   |  28 lines

  1. global checkForFullScreen, mtime
  2.  
  3. on beginSprite me
  4.   checkForFullScreen = 0
  5. end
  6.  
  7. on mouseUp me
  8.   if checkForFullScreen = 1 then
  9.     checkForFullScreen = 0
  10.   else
  11.     checkForFullScreen = 1
  12.   end if
  13.   puppetSound(2, "Clicker")
  14.   if not checkForFullScreen then
  15.     go("small")
  16.   else
  17.     go("large")
  18.   end if
  19. end
  20.  
  21. on mouseWithin me
  22.   cursor(280)
  23. end
  24.  
  25. on mouseLeave me
  26.   cursor(-1)
  27. end
  28.